linux-wallpaper
Get or set the desktop wallpaper on Linux
Install
$ npm install --save linux-wallpaper
Usage
var linuxWallpaper = require('linux-wallpaper');
linuxWallpaper.set('unicorn.jpg', function (err) {
console.log('done');
});
linuxWallpaper.get(function (err, imagePath) {
console.log(imagePath);
});
API
.get(callback)
callback(error, imagePath)
Required
Type: function
imagePath
Type: string
Path to the current desktop wallpaper image.
.set(imagePath, [callback])
imagePath
Required
Type: string
Path to the image to set as the desktop wallpaper.
CLI
See wallpaper
.
License
MIT © Sindre Sorhus